home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-09-23 | 357 b | 18 lines | [TEXT/RLAB] |
- //-------------------------------------------------------------------
- //
- // int2str
- //
- // Syntax: s = int2str(n)
- //
- // This routine converts the integer n to a string which
- // is returned.
- //
- // Original Author: Jeff Layton
- //-------------------------------------------------------------------
-
- int2str = function(n)
- {
- sprintf(s,"%.0f",n);
- return s;
- };
-